home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / curios.dxr / 00031.ls < prev    next >
Encoding:
Text File  |  1996-03-21  |  409 b   |  22 lines

  1. on enterFrame
  2.   if rollOver(21) then
  3.     go("naveg")
  4.   end if
  5. end
  6.  
  7. on exitFrame
  8.   set the visible of sprite 2 to 1
  9.   set hot to 14
  10.   repeat while hot < 20
  11.     if rollOver(hot) then
  12.       if the visible of sprite 2 = 1 then
  13.         sound playFile 2, "..\som\load.wav"
  14.         set the visible of sprite 2 to 0
  15.       end if
  16.       go("main")
  17.     end if
  18.     set hot to hot + 1
  19.   end repeat
  20.   go(the frame + 1)
  21. end
  22.